home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / tkern10.zip / GNUISH\GETOPT.C < prev    next >
C/C++ Source or Header  |  1990-09-19  |  18KB  |  616 lines

  1. /* Getopt for GNU.
  2.    Copyright (C) 1987, 1989, 1990 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 1, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* MS-DOS port (c) 1990 by Thorsten Ohl, td12@ddagsi3.bitnet
  19.    This port is distributed under the terms of the GNU General
  20.    Public License as published by the Free Software Foundation.
  21.  
  22.    $Header: e:/gnu/lib/RCS/getopt.c 1.1.0.1 90/09/11 09:46:00 tho Exp $
  23.  */
  24.  
  25. #ifdef __STDC__
  26. #define CONST const
  27. #else
  28. #define CONST
  29. #endif
  30.  
  31. /* This version of `getopt' appears to the caller like standard Unix `getopt'
  32.    but it behaves differently for the user, since it allows the user
  33.    to intersperse the options with the other arguments.
  34.  
  35.    As `getopt' works, it permutes the elements of `argv' so that,
  36.    when it is done, all the options precede everything else.  Thus
  37.    all application programs are extended to handle flexible argument order.
  38.  
  39.    Setting the environment variable _POSIX_OPTION_ORDER disables permutation.
  40.    Then the behavior is completely standard.
  41.  
  42.    GNU application programs can use a third alternative mode in which
  43.    they can distinguish the relative order of options and other arguments.  */
  44.  
  45. #include <stdio.h>
  46.  
  47. /* If compiled with GNU C, use the built-in alloca */
  48. #ifdef __GNUC__
  49. #define alloca __builtin_alloca
  50. #else /* not __GNUC__ */
  51. #ifdef sparc
  52. #include <alloca.h>
  53. #else
  54. #ifdef MSDOS
  55. #include <malloc.h>
  56. #else
  57. char *alloca ();
  58. #endif
  59. #endif
  60. #endif /* not __GNUC__ */
  61.  
  62. #if defined(STDC_HEADERS) || defined(__GNU_LIBRARY__)
  63. #include <stdlib.h>
  64. #include <string.h>
  65. #define bcopy(s, d, n) memcpy ((d), (s), (n))
  66. #define index strchr
  67. #else
  68.  
  69. #ifdef USG
  70. #include <string.h>
  71. #define bcopy(s, d, n) memcpy ((d), (s), (n))
  72. #define index strchr
  73. #else
  74. #include <strings.h>
  75. void bcopy ();
  76. #endif
  77.  
  78. char *getenv ();
  79. char *malloc ();
  80. #endif
  81.  
  82. #ifdef MSDOS
  83. /* Include the <getopt.h> header file to insure consistency
  84.    of the prototypes.  */
  85. #include <getopt.h>
  86. static void exchange (char **argv);
  87. #endif /* MSDOS */
  88.  
  89. /* For communication from `getopt' to the caller.
  90.    When `getopt' finds an option that takes an argument,
  91.    the argument value is returned here.
  92.    Also, when `ordering' is RETURN_IN_ORDER,
  93.    each non-option ARGV-element is returned here.  */
  94.  
  95. char *optarg = 0;
  96.  
  97. /* Index in ARGV of the next element to be scanned.
  98.    This is used for communication to and from the caller
  99.    and for communication between successive calls to `getopt'.
  100.  
  101.    On entry to `getopt', zero means this is the first call; initialize.
  102.  
  103.    When `getopt' returns EOF, this is the index of the first of the
  104.    non-option elements that the caller should itself scan.
  105.  
  106.    Otherwise, `optind' communicates from one call to the next
  107.    how much of ARGV has been scanned so far.  */
  108.  
  109. int optind = 0;
  110.  
  111. /* The next char to be scanned in the option-element
  112.    in which the last option character we returned was found.
  113.    This allows us to pick up the scan where we left off.
  114.  
  115.    If this is zero, or a null string, it means resume the scan
  116.    by advancing to the next ARGV-element.  */
  117.  
  118. static char *nextchar;
  119.  
  120. /* Callers store zero here to inhibit the error message
  121.    for unrecognized options.  */
  122.  
  123. int opterr = 1;
  124.  
  125. /* Describe how to deal with options that follow non-option ARGV-elements.
  126.  
  127.    If the caller did not specify anything,
  128.    the default is REQUIRE_ORDER if the environment variable
  129.    _POSIX_OPTION_ORDER is defined, PERMUTE otherwise.
  130.  
  131.    REQUIRE_ORDER means don't recognize them as options;
  132.    stop option processing when the first non-option is seen.
  133.    This is what Unix does.
  134.    This mode of operation is selected by either setting the environment
  135.    variable _POSIX_OPTION_ORDER, or using `+' as the first character
  136.    of the list of option characters.
  137.  
  138.    PERMUTE is the default.  We permute the contents of ARGV as we scan,
  139.    so that eventually all the non-options are at the end.  This allows options
  140.    to be given in any order, even with programs that were not written to
  141.    expect this.
  142.  
  143.    RETURN_IN_ORDER is an option available to programs that were written
  144.    to expect options and other ARGV-elements in any order and that care about
  145.    the ordering of the two.  We describe each non-option ARGV-element
  146.    as if it were the argument of an option with character code 1.
  147.    Using `-' as the first character of the list of option characters
  148.    selects this mode of operation.
  149.  
  150.    The special argument `--' forces an end of option-scanning regardless
  151.    of the value of `ordering'.  In the case of RETURN_IN_ORDER, only
  152.    `--' can cause `getopt' to return EOF with `optind' != ARGC.  */
  153.  
  154. static enum
  155. {
  156.   REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER
  157. } ordering;
  158.  
  159.  
  160. /* We have included <getopt.h>, so we'd better not redefine
  161.    struct option.  */
  162. #ifndef MSDOS
  163.  
  164. /* Describe the long-named options requested by the application.
  165.    _GETOPT_LONG_OPTIONS is a vector of `struct option' terminated by an
  166.    element containing a name which is zero.
  167.    The field `has_arg' is 1 if the option takes an argument,
  168.    2 if it takes an optional argument.  */
  169.  
  170. struct option
  171. {
  172.   char *name;
  173.   int has_arg;
  174.   int *flag;
  175.   int val;
  176. };
  177. #endif /* not MSDOS */
  178.  
  179. CONST struct option *_getopt_long_options;
  180.  
  181. int _getopt_long_only = 0;
  182.  
  183. /* Index in _GETOPT_LONG_OPTIONS of the long-named option actually found.
  184.    Only valid when a long-named option was found. */
  185.  
  186. int option_index;
  187.  
  188. /* Handle permutation of arguments.  */
  189.  
  190. /* Describe the part of ARGV that contains non-options that have
  191.    been skipped.  `first_nonopt' is the index in ARGV of the first of them;
  192.    `last_nonopt' is the index after the last of them.  */
  193.  
  194. static int first_nonopt;
  195. static int last_nonopt;
  196.  
  197. /* Exchange two adjacent subsequences of ARGV.
  198.    One subsequence is elements [first_nonopt,last_nonopt)
  199.     which contains all the non-options that have been skipped so far.
  200.    The other is elements [last_nonopt,optind), which contains all
  201.     the options processed since those non-options were skipped.
  202.  
  203.    `first_nonopt' and `last_nonopt' are relocated so that they describe
  204.     the new indices of the non-options in ARGV after they are moved.  */
  205.  
  206. static void
  207. exchange (argv)
  208.      char **argv;
  209. {
  210.   int nonopts_size = (last_nonopt - first_nonopt) * sizeof (char *);
  211.   char **temp = (char **) alloca (nonopts_size);
  212.  
  213.   /* Interchange the two blocks of data in ARGV.  */
  214.  
  215.   bcopy (&argv[first_nonopt], temp, nonopts_size);
  216.   bcopy (&argv[last_nonopt], &argv[first_nonopt],
  217.      (optind - last_nonopt) * sizeof (char *));
  218.   bcopy (temp, &argv[first_nonopt + optind - last_nonopt], nonopts_size);
  219.  
  220.   /* Update records for the slots the non-options now occupy.  */
  221.  
  222.   first_nonopt += (optind - last_nonopt);
  223.   last_nonopt = optind;
  224. }
  225.  
  226. /* Scan elements of ARGV (whose length is ARGC) for option characters
  227.    given in OPTSTRING.
  228.  
  229.    If an element of ARGV starts with '-', and is not exactly "-" or "--",
  230.    then it is an option element.  The characters of this element
  231.    (aside from the initial '-') are option characters.  If `getopt'
  232.    is called repeatedly, it returns successively each of the option characters
  233.    from each of the option elements.
  234.  
  235.    If `getopt' finds another option character, it returns that character,
  236.    updating `optind' and `nextchar' so that the next call to `getopt' can
  237.    resume the scan with the following option character or ARGV-element.
  238.  
  239.    If there are no more option characters, `getopt' returns `EOF'.
  240.    Then `optind' is the index in ARGV of the first ARGV-element
  241.    that is not an option.  (The ARGV-elements have been permuted
  242.    so that those that are not options now come last.)
  243.  
  244.    OPTSTRING is a string containing the legitimate option characters.
  245.    If an option character is seen that is not listed in OPTSTRING,
  246.    return '?' after printing an error message.  If you set `opterr' to
  247.    zero, the error message is suppressed but we still return '?'.
  248.  
  249.    If a char in OPTSTRING is followed by a colon, that means it wants an arg,
  250.    so the following text in the same ARGV-element, or the text of the following
  251.    ARGV-element, is returned in `optarg'.  Two colons mean an option that
  252.    wants an optional arg; if there is text in the current ARGV-element,
  253.    it is returned in `optarg', otherwise `optarg' is set to zero.
  254.  
  255.    If OPTSTRING starts with `-' or `+', it requests different methods of
  256.    handling the non-option ARGV-elements.
  257.    See the comments about RETURN_IN_ORDER and REQUIRE_ORDER, above.
  258.  
  259.    Long-named options begin with `+' instead of `-'.
  260.    Their names may be abbreviated as long as the abbreviation is unique
  261.    or is an exact match for some defined option.  If they have an
  262.    argument, it follows the option name in the same ARGV-element, separated
  263.    from the option name by a `=', or else the in next ARGV-element.
  264.    When `getopt' finds a long-named option, it returns 0 if that option's
  265.    `flag' field is nonzero, the value of the option's `val' field
  266.    otherwise.  */
  267.  
  268. int
  269. getopt (argc, argv, optstring)
  270.      int argc;
  271.      char **argv;
  272.      CONST char *optstring;
  273. {
  274.   optarg = 0;
  275.  
  276.   /* Initialize the internal data when the first call is made.
  277.      Start processing options with ARGV-element 1 (since ARGV-element 0
  278.      is the program name); the sequence of previously skipped
  279.      non-option ARGV-elements is empty.  */
  280.  
  281.   if (optind == 0)
  282.     {
  283.       first_nonopt = last_nonopt = optind = 1;
  284.  
  285.       nextchar = 0;
  286.  
  287.       /* Determine how to handle the ordering of options and nonoptions.  */
  288.  
  289.       if (optstring[0] == '-')
  290.     {
  291.       ordering = RETURN_IN_ORDER;
  292.       ++optstring;
  293.     }
  294.       else if (optstring[0] == '+')
  295.     {
  296.       ordering = REQUIRE_ORDER;
  297.       ++optstring;
  298.     }
  299.       else if (getenv ("_POSIX_OPTION_ORDER") != 0)
  300.     ordering = REQUIRE_ORDER;
  301.       else
  302.     ordering = PERMUTE;
  303.     }
  304.  
  305.   if (nextchar == 0 || *nextchar == 0)
  306.     {
  307.       if (ordering == PERMUTE)
  308.     {
  309.       /* If we have just processed some options following some non-options,
  310.          exchange them so that the options come first.  */
  311.  
  312.       if (first_nonopt != last_nonopt && last_nonopt != optind)
  313.         exchange (argv);
  314.       else if (last_nonopt != optind)
  315.         first_nonopt = optind;
  316.  
  317.       /* Now skip any additional non-options
  318.          and extend the range of non-options previously skipped.  */
  319.  
  320.       while (optind < argc
  321.          && (argv[optind][0] != '-'
  322.              || argv[optind][1] == 0)
  323.          && (_getopt_long_options == 0
  324.              || argv[optind][0] != '+'
  325.              || argv[optind][1] == 0))
  326.         optind++;
  327.       last_nonopt = optind;
  328.     }
  329.  
  330.       /* Special ARGV-element `--' means premature end of options.
  331.      Skip it like a null option,
  332.      then exchange with previous non-options as if it were an option,
  333.      then skip everything else like a non-option.  */
  334.  
  335.       if (optind != argc && !strcmp (argv[optind], "--"))
  336.     {
  337.       optind++;
  338.  
  339.       if (first_nonopt != last_nonopt && last_nonopt != optind)
  340.         exchange (argv);
  341.       else if (first_nonopt == last_nonopt)
  342.         first_nonopt = optind;
  343.       last_nonopt = argc;
  344.  
  345.       optind = argc;
  346.     }
  347.  
  348.       /* If we have done all the ARGV-elements, stop the scan
  349.      and back over any non-options that we skipped and permuted.  */
  350.  
  351.       if (optind == argc)
  352.     {
  353.       /* Set the next-arg-index to point at the non-options
  354.          that we previously skipped, so the caller will digest them.  */
  355.       if (first_nonopt != last_nonopt)
  356.         optind = first_nonopt;
  357.       return EOF;
  358.     }
  359.  
  360.       /* If we have come to a non-option and did not permute it,
  361.      either stop the scan or describe it to the caller and pass it by.  */
  362.  
  363.       if ((argv[optind][0] != '-' || argv[optind][1] == 0)
  364.       && (_getopt_long_options == 0
  365.           || argv[optind][0] != '+' || argv[optind][1] == 0))
  366.     {
  367.       if (ordering == REQUIRE_ORDER)
  368.         return EOF;
  369.       optarg = argv[optind++];
  370.       return 1;
  371.     }
  372.  
  373.       /* We have found another option-ARGV-element.
  374.      Start decoding its characters.  */
  375.  
  376.       nextchar = argv[optind] + 1;
  377.     }
  378.  
  379.   if (_getopt_long_options != 0
  380.       && (argv[optind][0] == '+'
  381.       || (_getopt_long_only && argv[optind][0] == '-'))
  382.     )
  383.     {
  384.       CONST struct option *p;
  385.       char *s = nextchar;
  386.       int exact = 0;
  387.       int ambig = 0;
  388.       CONST struct option *pfound = 0;
  389.       int indfound;
  390.  
  391.       while (*s && *s != '=')
  392.     s++;
  393.  
  394.       /* Test all options for either exact match or abbreviated matches.  */
  395.       for (p = _getopt_long_options, option_index = 0; p->name;
  396.        p++, option_index++)
  397.     if (!strncmp (p->name, nextchar, s - nextchar))
  398.       {
  399.         if (s - nextchar == strlen (p->name))
  400.           {
  401.         /* Exact match found.  */
  402.         pfound = p;
  403.         indfound = option_index;
  404.         exact = 1;
  405.         break;
  406.           }
  407.         else if (pfound == 0)
  408.           {
  409.         /* First nonexact match found.  */
  410.         pfound = p;
  411.         indfound = option_index;
  412.           }
  413.         else
  414.           /* Second nonexact match found.  */
  415.           ambig = 1;
  416.       }
  417.  
  418.       if (ambig && !exact)
  419.     {
  420.       fprintf (stderr, "%s: option `%s' is ambiguous\n",
  421.            argv[0], argv[optind]);
  422.       nextchar += strlen (nextchar);
  423.       optind++;
  424.       return '?';
  425.     }
  426.  
  427.       if (pfound != 0)
  428.     {
  429.       option_index = indfound;
  430.       optind++;
  431.       if (*s)
  432.         {
  433.           if (pfound->has_arg > 0)
  434.         optarg = s + 1;
  435.           else
  436.         {
  437.           fprintf (stderr,
  438.                "%s: option `%c%s' doesn't allow an argument\n",
  439.                argv[0], argv[optind - 1][0], pfound->name);
  440.           nextchar += strlen (nextchar);
  441.           return '?';
  442.         }
  443.         }
  444.       else if (pfound->has_arg == 1)
  445.         {
  446.           if (optind < argc)
  447.         optarg = argv[optind++];
  448.           else
  449.         {
  450.           fprintf (stderr, "%s: option `%s' requires an argument\n",
  451.                argv[0], argv[optind - 1]);
  452.           nextchar += strlen (nextchar);
  453.           return '?';
  454.         }
  455.         }
  456.       nextchar += strlen (nextchar);
  457.       if (pfound->flag)
  458.         {
  459.           *(pfound->flag) = pfound->val;
  460.           return 0;
  461.         }
  462.       return pfound->val;
  463.     }
  464.       /* Can't find it as a long option.  If this is getopt_long_only,
  465.      and the option starts with '-' and is a valid short
  466.      option, then interpret it as a short option.  Otherwise it's
  467.      an error.  */
  468.       if (_getopt_long_only == 0 || argv[optind][0] == '+' ||
  469.       index (optstring, *nextchar) == 0)
  470.     {
  471.       if (opterr != 0)
  472.         fprintf (stderr, "%s: unrecognized option `%c%s'\n",
  473.              argv[0], argv[optind][0], nextchar);
  474.       nextchar += strlen (nextchar);
  475.       optind++;
  476.       return '?';
  477.     }
  478.     }
  479.  
  480.   /* Look at and handle the next option-character.  */
  481.  
  482.   {
  483.     char c = *nextchar++;
  484.     char *temp = index (optstring, c);
  485.  
  486.     /* Increment `optind' when we start to process its last character.  */
  487.     if (*nextchar == 0)
  488.       optind++;
  489.  
  490.     if (temp == 0 || c == ':')
  491.       {
  492.     if (opterr != 0)
  493.       {
  494.         if (c < 040 || c >= 0177)
  495.           fprintf (stderr, "%s: unrecognized option, character code 0%o\n",
  496.                argv[0], c);
  497.         else
  498.           fprintf (stderr, "%s: unrecognized option `-%c'\n",
  499.                argv[0], c);
  500.       }
  501.     return '?';
  502.       }
  503.     if (temp[1] == ':')
  504.       {
  505.     if (temp[2] == ':')
  506.       {
  507.         /* This is an option that accepts an argument optionally.  */
  508.         if (*nextchar != 0)
  509.           {
  510.         optarg = nextchar;
  511.         optind++;
  512.           }
  513.         else
  514.           optarg = 0;
  515.         nextchar = 0;
  516.       }
  517.     else
  518.       {
  519.         /* This is an option that requires an argument.  */
  520.         if (*nextchar != 0)
  521.           {
  522.         optarg = nextchar;
  523.         /* If we end this ARGV-element by taking the rest as an arg,
  524.            we must advance to the next element now.  */
  525.         optind++;
  526.           }
  527.         else if (optind == argc)
  528.           {
  529.         if (opterr != 0)
  530.           fprintf (stderr, "%s: option `-%c' requires an argument\n",
  531.                argv[0], c);
  532.         c = '?';
  533.           }
  534.         else
  535.           /* We already incremented `optind' once;
  536.          increment it again when taking next ARGV-elt as argument.  */
  537.           optarg = argv[optind++];
  538.         nextchar = 0;
  539.       }
  540.       }
  541.     return c;
  542.   }
  543. }
  544.  
  545. #ifdef TEST
  546.  
  547. /* Compile with -DTEST to make an executable for use in testing
  548.    the above definition of `getopt'.  */
  549.  
  550. int
  551. main (argc, argv)
  552.      int argc;
  553.      char **argv;
  554. {
  555.   int c;
  556.   int digit_optind = 0;
  557.  
  558.   while (1)
  559.     {
  560.       int this_option_optind = optind ? optind : 1;
  561.  
  562.       c = getopt (argc, argv, "abc:d:0123456789");
  563.       if (c == EOF)
  564.     break;
  565.  
  566.       switch (c)
  567.     {
  568.     case '0':
  569.     case '1':
  570.     case '2':
  571.     case '3':
  572.     case '4':
  573.     case '5':
  574.     case '6':
  575.     case '7':
  576.     case '8':
  577.     case '9':
  578.       if (digit_optind != 0 && digit_optind != this_option_optind)
  579.         printf ("digits occur in two different argv-elements.\n");
  580.       digit_optind = this_option_optind;
  581.       printf ("option %c\n", c);
  582.       break;
  583.  
  584.     case 'a':
  585.       printf ("option a\n");
  586.       break;
  587.  
  588.     case 'b':
  589.       printf ("option b\n");
  590.       break;
  591.  
  592.     case 'c':
  593.       printf ("option c with value `%s'\n", optarg);
  594.       break;
  595.  
  596.     case '?':
  597.       break;
  598.  
  599.     default:
  600.       printf ("?? getopt returned character code 0%o ??\n", c);
  601.     }
  602.     }
  603.  
  604.   if (optind < argc)
  605.     {
  606.       printf ("non-option ARGV-elements: ");
  607.       while (optind < argc)
  608.     printf ("%s ", argv[optind++]);
  609.       printf ("\n");
  610.     }
  611.  
  612.   exit (0);
  613. }
  614.  
  615. #endif /* TEST */
  616.